From 81c0e00a2ed3644c314c552f29adcf4052f4cff1 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 1 Jun 2010 07:06:05 +0100 Subject: [PATCH] libxl: fix domain suspend debug typo. Signed-off-by: Zhigang Wang --- tools/libxl/libxl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c index 18c63e8aa2..d7563b4b31 100644 --- a/tools/libxl/libxl.c +++ b/tools/libxl/libxl.c @@ -495,7 +495,7 @@ int libxl_domain_suspend(struct libxl_ctx *ctx, libxl_domain_suspend_info *info, { int hvm = is_hvm(ctx, domid); int live = info != NULL && info->flags & XL_SUSPEND_LIVE; - int debug = info != NULL && info->flags & XL_SUSPEND_LIVE; + int debug = info != NULL && info->flags & XL_SUSPEND_DEBUG; core_suspend(ctx, domid, fd, hvm, live, debug); if (hvm) -- 2.30.2